home *** CD-ROM | disk | FTP | other *** search
/ Delphi Magazine Collection 2001 / Delphi Magazine Collection 20001 (2001).iso / DISKS / Issue30 / clinic / DBCompU.pas next >
Encoding:
Pascal/Delphi Source File  |  1997-12-01  |  255 b   |  20 lines

  1. unit DBCompU;
  2.  
  3. interface
  4.  
  5. uses
  6.   Classes;
  7.  
  8. type
  9.   TDBTest = class(TComponent)
  10.   private
  11.     FDatabaseName: String;
  12.   published
  13.     property DatabaseName: String
  14.       read FDatabaseName write FDatabaseName;
  15.   end;
  16.  
  17. implementation
  18.  
  19. end.
  20.